home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 11 / Cream of the Crop 11-1.iso / comm / callbbs.zip / NO_MODEM.TXT < prev    next >
Text File  |  1995-10-02  |  8KB  |  147 lines

  1.  
  2.       EZ_Online                                              NO_MODEM.TXT
  3.      ─────────────────────────────────────────────────────────────────────
  4.  
  5.  
  6.                     No modem ... no phone connection?
  7.  
  8.  
  9.          Going online means, connecting your computer to another
  10.          computer using the telephone lines.
  11.  
  12.          Computers deal in digital data, which is represented by only
  13.          two signal states ... 0 and 1, high and low, on and off.
  14.          Conventional telephone systems are designed for voice
  15.          communications, which involve audible, continuously variable,
  16.          electrical signals, and cannot transmit two-state digital
  17.          information.
  18.  
  19.          The problem of transmitting digital information was easily
  20.          and intuitively solved, by simply converting the two states
  21.          of the transmitting computer's signals to different sounds,
  22.          passing them into the phone system and sending them to a
  23.          computer on the other end of the line, where they're
  24.          converted from sounds back to two-state digital pulses.
  25.  
  26.          The tool that does this is called a "MODEM", an acronym for
  27.          MOdulate/DEModulate.
  28.  
  29.          Modems can be internal or external.  If you have an external
  30.          modem (not common), you'll find a separate box with several
  31.          little lights plugged into the back of your computer.  More
  32.          likely, your modem will be internal ... a board plugged into
  33.          one of the slots inside your computer, with modular telephone
  34.          connectors protruding through openings in the back of its
  35.          case.
  36.  
  37.          If you find phone connectors on the back of your computer's
  38.          case, simply connect the one marked "Line" to the nearest
  39.          wall connector.  If needed, standard telephone cables,
  40.          extensions, and couplers are available at Radio Shack stores,
  41.          hardware stores and discount department stores.
  42.  
  43.               Naturally, this assumes that your phone system is
  44.               properly wired.  If there's any doubt about it ...
  45.               you'll notice that your phone cable has four wires:
  46.               RED, GREEN, YELLOW and BLACK.  Also notice that the
  47.               phone connectors have four pins, then assure that
  48.               the RED and GREEN wires are connected to the middle
  49.               two pins.
  50.  
  51.          If your computer is not modem-equipped ... not to worry!  You
  52.          can probably afford, and install, an internal modem.
  53.  
  54.          What to buy?  Modems are also classed by transfer speed, and
  55.          at the present time 28,800 "baud" (bits per second) units are
  56.          the creme of the crop.  If you can afford it, spending $180
  57.          now will surely save you much more that that in phone bills
  58.          over the life of the equipment ... and while you're at it,
  59.          make it a FAX/Modem ... it won't cost any more, and you'll be
  60.          able to send FAX's directly from your computer, should you
  61.          ever wish to do so.  If you'd rather not open your computer's
  62.          case, another $30 will get you the external version of any
  63.          internal fax/modem.
  64.  
  65.          For $100 less, about $96, you can purchase a 14,400 baud
  66.          unit, which is obviously slower, but still quite adequate.
  67.          If you look hard enough, you'll be able to find a 9,600 baud
  68.          internal modem for about $45, and this may be good enough for
  69.          now.  If you have only pocket change, a 2,400 baud modem is
  70.          certainly better than nothing, and shouldn't cost more than
  71.          about $15 ... and you might even be able to find one of these
  72.          older, but still perfectly functional units, available as a
  73.          gift from a friend who upgraded to a faster unit.
  74.  
  75.          To install an internal modem, you need only open the case of
  76.          your computer and plug it in at any available "slot".  You
  77.          will also probably need to "tell" the board which "COM port"
  78.          and "Interrupt" it may use, and this is usually done either
  79.          by moving jumpers on the board, or setting its "dip switches"
  80.          according to directions provided with the unit.
  81.  
  82.          What's a "COM port"?  What's an "Interrupt"?  Internally,
  83.          your computer moves data around in eight-bit "bytes" on a
  84.          wiring system composed of parallel lines.  Moving all these
  85.          bits simultaneously on parallel lines greatly speeds things
  86.          up, compared to transmitting eight-bit "bytes" one bit at a
  87.          time on a single line.  But since telephone lines can only
  88.          carry one bit at a time, the computer has to convert its
  89.          "parallel" data to "serial" (one bit at a time).
  90.  
  91.          This task is performed by a chip known as a Universal
  92.          Asynchronous Receiver/Transmitter (UART).  The computer sends
  93.          this chip 8-bit bytes on its parallel wires, and the chip
  94.          passes them on to your modem as a stream of bits on a single
  95.          line.  The UART works in reverse also, converting serial bit
  96.          streams received from your modem to 8-bit parallel bytes and
  97.          sending them on to your computer.  The UART is also referred
  98.          to as a "serial port", aka "COM port".
  99.  
  100.          Your computer probably came with a single UART, which serves
  101.          your mouse. Your modem contains its own UART, so now you'll
  102.          have two.  DOS can handle up to four COM ports, and you can
  103.          designate your UART's as you wish, as COM1, COM2, COM3 or
  104.          COM4 ... the name doesn't have any relation to the actual
  105.          physical connection of the UART, its simply a handle that DOS
  106.          uses to identify the serial ports.  By convention, COM1 is
  107.          now usually assigned to the UART that serves your mouse, and
  108.          COM2 to your modem.
  109.  
  110.          Since handling data serially is a much slower process than
  111.          moving the same data on a "parallel bus", the computer is
  112.          able to move data much faster than the UART.  A system of
  113.          "handshaking" has thereby been devised to let the UART "talk
  114.          to" the computer, telling it when to stop sending data, when
  115.          it has data available, and so on.  To permit the computer to
  116.          do other work while the UART is slowly doing its work, this
  117.          "interrupt" technique is employed, whereby the UART is able
  118.          to send a signal on a special line ... the IRQ line ... to
  119.          get the computer's attention when it's finally ready to
  120.          receive more data, or to send data to the computer.
  121.  
  122.          If your setup is typical, you have a mouse on "COM1", and
  123.          you'll want your modem to use "COM2".  The default interrupt
  124.          for COM2 is "IRQ3" ... and that's all there is to that.  A
  125.          dip switch setup on the back of your modem (near the phone
  126.          connectors) is pretty much standard; if necessary, just
  127.          change the switch settings to the proper positions shown for
  128.          COM2.
  129.  
  130.          Naturally, you can't have two devices assigned to the same
  131.          port at the same time. If you're not sure about your mouse,
  132.          use its diagnostic software (usually found in a "C:\MOUSE"
  133.          directory) to see if its been assigned COM1 or COM2.
  134.  
  135.          Beyond that, installing an internal modem is probably the
  136.          easiest add-on project you'll ever do.  So approach the
  137.          project with confidence.  You can do it!
  138.  
  139.  
  140.          Evil-Crypt BBS
  141.          Tony Zarzecki, SysOp
  142.          Redford, MI  usa
  143.          313-538=3762
  144.  
  145.  
  146.                    (to exit, touch Esc ... then "Y")
  147.